home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / tcp_ip / tnos / tnos100s / tipmail.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-10  |  672 b   |  31 lines

  1. #ifndef _TIPMAIL_H
  2. #define _TIPMAIL_H
  3.  
  4. static struct tipcb {
  5.     struct tipcb *next;
  6.     struct proc *proc;
  7.     struct proc *in;
  8.     struct iface *iface;
  9.     struct timer timer;
  10.     int (*rawsave) __ARGS((struct iface *,struct mbuf *));
  11.     int s;
  12.     int echo;
  13.     char keep;
  14.     char modem;
  15.     char firstwarn;
  16.         char raw;
  17.     int asy_dev;
  18.     unsigned default_timeout;
  19.     unsigned timeout;
  20. } *Tiplist;
  21. #define NULLTIP (struct tipcb *)0
  22.  
  23. int tipstart __ARGS((int argc,char *argv[],void *p));
  24. int tip0 __ARGS((int argc,char *argv[],void *p));
  25. int telnet0 __ARGS((int argc,char *argv[],void *p));
  26. int telnet1 __ARGS((int argc,char *argv[],void *p));
  27.  
  28.  
  29. #endif /* _TIPMAIL_H */
  30.  
  31.